home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / BUSINESS / STATA3.LZH / CONTENTS.TUT < prev    next >
Text File  |  1988-08-26  |  3KB  |  99 lines

  1. set output error
  2. set display page 23
  3. set more 1
  4. #delimit ;
  5.  
  6. di _n(5) in white
  7. "  ___  ____  ____  ____  ____ tm" _col(68) in green "page 1 of 2" in white _n
  8. " /__    /   ____/   /   ____/" _n
  9. "___/   /   /___/   /   /___/    Tutorials" _n
  10. "-----------------------------------------" _n(2) ;
  11.  
  12. di in green "Filename" _col(17) "Description" _n
  13. in white _dup(79) "-" _n(2)
  14. "intro.tut" _col(17) in gr "An introduction to Stata" _n(2)
  15. in wh "graphics.tut" _col(17) in gr "How to make graphs" _n
  16. in wh "tables.tut" _col(17) in gr "How to make tables" _n ;
  17.  
  18. di
  19. in wh "anova.tut" _col(17) in gr
  20.     "Estimating one-, two- and N-way ANOVA and ANOCOVA models" _n
  21. in wh "regress.tut" _col(17) in gr
  22.     "Estimating regression models, including 2SLS" _n
  23. in wh "probit.tut" _col(17) in gr
  24.     "Estimating maximum-likelihood probit and logit models" _n
  25. in wh "survive.tut" _col(17) in gr
  26.     "Estimating maximum-likelihood survival models" _n ;
  27.  
  28. di
  29. in wh "statkit.tut" _col(17) in gr
  30.     "Use of Stat.Kit extensions to Stata" _n
  31. in wh "graphkit.tut" _col(17) in gr
  32.     "Use of Graph.Kit extensions to Stata" _n
  33. in wh "datakit.tut" _col(17) in gr
  34.     "Use of Data.Kit extensions to Stata" _n
  35. in wh "qckit.tut" _col(17) in gr
  36.     "Use of QC.Kit quality control charts" _n ;
  37.  
  38. #delimit cr
  39. mac def path
  40. capture run nullfile.tut
  41. if _rc {
  42.     mac def path "\stata\"
  43.     capture run %path`nullfile.tut
  44.     if _rc {
  45.         mac def path "/usr/stata/"
  46.         capture run %path`nullfile.tut
  47.         if _rc {
  48.             #delimit ;
  49.             di in red
  50. "I cannot find the other tutorial files.  I have looked in the current" _n
  51. "directory and in \stata (DOS) or /usr/stata (Unix).  Is Stata installed" _n
  52. "correctly?" _n(2)
  53. "In any case, I cannot run the tutorial." ;
  54.             #delimit cr
  55.             exit
  56.         }
  57.     }
  58. }
  59. #delimit ;
  60.  
  61. set more 0 ; more ; set more 1 ;
  62.  
  63. di _n(4) in gr "Stata tutorials" _col(68) "page 2 of 2" _n(2)
  64. in green "Filename" _col(17) "Description" _n
  65. in white _dup(79) "-" _n(2)
  66. "ourdata.tut" _col(17) in gr "Description of the data we provide" _n
  67. in wh "yourdata.tut" _col(17) in gr
  68.     "How to input your own data into Stata" _n(2) ;
  69.  
  70.  
  71. di in gr
  72. "To run a tutorial, type '"
  73. in wh "do %path`_____.tut" in gr "', filling in the blank" _n
  74. "with a filename from the list above.  We recommend you run "
  75. in wh "intro.tut" in gr _n
  76. "first.  After that, run the tutorials in whatever order you desire." _n ;
  77.  
  78. di _n(2) in gr "Remember:" _n
  79. "     You can always type '"
  80. in wh "help" in gr "' (or press "
  81. in wh "F1" in gr " followed by " in wh "Return" in gr ")." _n
  82. "     DOS users can invoke the menu system by pressing " in wh "F10"
  83. in gr "." _n
  84. "     You can see a list of all tutorials by typing '"
  85. in wh "do %path`contents.tut" in gr "'" _n
  86. "         (or by simply pressing " in wh "F5" in gr ")." _n
  87. "     You can leave Stata by typing '"
  88. in wh "exit, clear" in gr "'" _n(2) ;
  89.  
  90. mac def F5 "do %path`contents.tut;" ;
  91.  
  92. set more 0 ; more ;
  93. exit ;
  94.  
  95.  
  96. *│   You can leave STATA and return to DOS by typing "exit, clear".         │
  97. *└──────────────────────────────────────────────────────────────────────────┘
  98. more
  99.